home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 November / EnigmA AMIGA RUN 02 (1995)(G.R. Edizioni)(IT)[!][issue 1995-11][Skylink CD].iso / earcd / gfx / jpegv6sr.readme < prev    next >
Text File  |  1995-09-06  |  2KB  |  35 lines

  1. Short:    IJG JPEG V6 source, dev. material
  2. Author:   Independent JPEG Group (jpeg-info@uunet.uu.net)
  3. Uploader: Guenther@studbox.uni-stuttgart.de (Guenther Roehrich)
  4. Type:     gfx/conv
  5.  
  6. This distribution contains the sixth public release of the Independent JPEG
  7. Group's free JPEG software.
  8.  
  9. Version 6  2-Aug-95
  10. -------------------
  11.  
  12. Progressive JPEG support: library can read and write full progressive JPEG
  13. files.  A "buffered image" mode supports incremental decoding for on-the-fly
  14. display of progressive images.  Simply recompiling an existing IJG-v5-based
  15. decoder with v6 should allow it to read progressive files, though of course
  16. without any special progressive display.
  17.  
  18. New "jpegtran" application performs lossless transcoding between different
  19. JPEG formats; primarily, it can be used to convert baseline to progressive
  20. JPEG and vice versa.  In support of jpegtran, the library now allows lossless
  21. reading and writing of JPEG files as DCT coefficient arrays.  This ability
  22. may be of use in other applications.
  23.  
  24. Notes for programmers:
  25. * We changed jpeg_start_decompress() to be able to suspend; this makes all
  26. decoding modes available to suspending-input applications.  However,
  27. existing applications that use suspending input will need to be changed
  28. to check the return value from jpeg_start_decompress().  You don't need to
  29. do anything if you don't use a suspending data source.
  30. * We changed the interface to the virtual array routines: access_virt_array
  31. routines now take a count of the number of rows to access this time.  The
  32. last parameter to request_virt_array routines is now interpreted as the
  33. maximum number of rows that may be accessed at once, but not necessarily
  34. the height of every access.
  35.